home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / tm301_2.zip / SPITFIRE.SCR < prev    next >
Text File  |  1992-01-03  |  480b  |  24 lines

  1. ;
  2. ; SPITFIRE.SCR is a log on script file for SpitFire BBS
  3. ;
  4.  
  5. FirstName = "first"          ; put you name here
  6. LastName = "last"
  7. Color = "Y"                  ; "Y"es or "N"o
  8.  
  9. SET AutoStop,On              ; stop script if carrier is lost
  10. Waitfor 0                    ; unlimited waiting time
  11.  
  12. Waitfor "Do you want ANSI COLOR GRAPHICS? [y/N]"
  13. Put Color,
  14.  
  15. Waitfor "first name"
  16. Put FirstName
  17.  
  18. Waitfor "last name"
  19. Put LastName
  20.  
  21. Waitfor "your password:"
  22. Put "^&"
  23.  
  24.